home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Oxygen Multimedia Graphics 22
/
Oxygen Multimedia Graphics 22.iso
/
pc
/
MENU.exe
/
MENU.dxr
/
00007_agree behavior with fileIO.ls
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2008-03-06
|
614 b
|
18 lines
global myFile
on mouseUp
if objectp(myFile) then
myFile = 0
end if
myFile = new(xtra("fileio"))
openfile(myFile, getOSDirectory() & "\oxygen-22.ini", 0)
delete(myFile)
createFile(myFile, getOSDirectory() & "\oxygen-22.ini")
openfile(myFile, getOSDirectory() & "\oxygen-19.ini", 0)
mySaveString = "You have chosen to agree with the license restrictions for using the product 'OXYGEN Volume 22.' This file exists to act as a 'cookie' so that you will not have to agree every time the product disc is inserted."
writeString(myFile, mySaveString)
closeFile(myFile)
myFile = 0
go("GO")
end